home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / javax / print / URIException.class (.txt) < prev   
Encoding:
Java Class File  |  2006-11-29  |  292 b   |  14 lines

  1. package javax.print;
  2.  
  3. import java.net.URI;
  4.  
  5. public interface URIException {
  6.    int URIInaccessible = 1;
  7.    int URISchemeNotSupported = 2;
  8.    int URIOtherProblem = -1;
  9.  
  10.    URI getUnsupportedURI();
  11.  
  12.    int getReason();
  13. }
  14.